From 7c49bea080307c65b9d04b18df488f7787250d22 Mon Sep 17 00:00:00 2001 From: Keir Fraser Date: Mon, 7 Sep 2009 14:26:06 +0100 Subject: [PATCH] Fix etags invocation Don't fail in the case where 'etags' isn't Exuberant Ctags Signed-off-by: Tim Deegan --- xen/Makefile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/xen/Makefile b/xen/Makefile index 6bda1e7ea9..0fb1c2753f 100644 --- a/xen/Makefile +++ b/xen/Makefile @@ -122,10 +122,10 @@ define all_sources endef define set_exuberant_flags - exuberant_flags=`$1 --version 2>/dev/null | grep -iq exuberant && \ + exuberant_flags=`$1 --version 2>/dev/null | (grep -iq exuberant && \ echo "-I __initdata,__exitdata,__acquires,__releases \ -I EXPORT_SYMBOL,EXPORT_SYMBOL_GPL \ - --extra=+f --c-kinds=+px"` + --extra=+f --c-kinds=+px") || true` endef .PHONY: _TAGS -- 2.30.2